home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / n-z / raystorexa / arexx / randomsph.ray < prev    next >
Text File  |  1995-10-21  |  789b  |  45 lines

  1. /***************
  2.  * NAME:          randomsph.ray
  3.  * VERSION:       1.0 08.07.1995
  4.  * DESCRIPTION:   This ARexx-programm demonstrates random colors of faces
  5.  * AUTHORS:       Andreas Heumann
  6.  * BUGS:          none
  7.  * TO DO:         none
  8.  * HISTORY:
  9.  *    DATE     NAME  COMMENT
  10.  *    08.07.95 ah    initial release
  11.  ***************/
  12.  
  13. signal on error
  14.  
  15. options results
  16.  
  17. IF ~show('P','RAYSTORM') THEN DO
  18.     address COMMAND 'run >NIL: <NIL: /RayStorm'
  19.     address COMMAND WaitForPort RAYSTORM
  20. END  
  21.  
  22. address RAYSTORM
  23.  
  24. 'OBJECTPATH /objects'
  25.  
  26. 'SETSCREEN 160 128'
  27. 'SETCAMERA <0,0,300> <0,0,0> <0,1,0> 25 20'
  28. 'POINTLIGHT <10,-10,100>'
  29.  
  30. 'LOADOBJ randomsphere.iob'
  31.  
  32. 'STARTRENDER QUICK'
  33.  
  34. 'SAVEPIC randomsph.iff'
  35.  
  36. 'CLEANUP'
  37.  
  38. exit 0
  39.  
  40. error:
  41. say "Error" rc "in line" sigl ":"
  42. GETERRORSTR rc
  43. say result
  44. exit 0
  45.